In here are the list of things I did for a particular hour or day. Also included here are the screenshots of games I played, or videos I watched or listened to, or just random things I stumbled upon. I'll occasionally write down what I'm thinking, or things I'm planning to do.
I've now wrote some code to automatically embed the screenshots on my log page. Look at the disgustingly horrible code. Oh well, it works for now, I'll modify it a month later once it starts running too slow.
Also listening to some ragnarok online BGM. I never got to play the game, but I still remember my highschool buddies talking about it back in the day. I kind of want to play the offline version of the game though. The art style sort of looks like trails in the sky.
Uhh, I just spend almost an hour adding a vim abbreviation to insert the current date time. So I would type cdt in insert mode, and a date gets inserted.
Not exactly what was I planning on doing this early evening of friday...
It's not like I have better things to do though.
I took a nap after my last log, and I just finished watching two anime episodes while drinking coffee.
I got up from my computer around 13:00. So in three hours, I did the following in order:
I got distracted and looked up how to insert ≈ and ≉ in vim. Vim has default digraph entry for ≈ (ctrl+k ?2), but not ≉. So I made a brief visit to the vim docs to figure out how to add digraphs. I did the following:
:digraph /2 2249
But this doesn't work. The 2249 is the hex UTF-16 encoding for ≉. Vim actually wants a decimal number, so I convert hex to decimal:
:digraph /2 8777
And it works. Actually, I'm using lua to configure nvim, so:
vim.cmd.digraph("/2", 8777)
≉≉≉≉≉≉≉≉≉≉≉≉≉≉≉
Math nerds and their silly symbols. And oh yeah, a ≈ b means a is infinitely close to b, or that a -b is an infinitesimal. Otherwise a ≉ b.
I'm currently reading "Elementary calculus: An infinitesimal approach". I've been slowly reading for about an hour each day. But just a random thought, I should make a simple youtube web frontend, so that I could listen to longer videos while I sleep. I want the videos to stop playing automatically after 30 minutes, so it doesn't waste my phone batteries when I'm already deep slumber to listen.
I spent about a 0.5 hour browsing HN and reddit while sipping some coffee and munching on some bananas. I briefly went over the "Who's hiring thread" and scanned for jobs that I might qualify. As usual, most posts are US/EU constrained by time or location. I basically have abysmal chances of getting even an interview, so I'm not even going to bother applying this time.
site last updated on 2024-10-16 | created with moontpl